home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1996 November
/
CHIP Kasım 1996.iso
/
ms
/
catapult
/
catapult.exe
/
X86
/
RWSPERF.H
< prev
next >
Wrap
Text File
|
1996-05-30
|
2KB
|
65 lines
#define RWSSRV_COUNTER_OBJ 0
// Number of active sessions (CSession objects)
#define COUNTER_ActiveSessions 2
// Total number of active TCP connections (CConnection
// objects for TCP), active means doing Data-Pump.
// Connections that are in the "connect" call are counted
// elsewhere.
#define COUNTER_ActiveTCPConnections 4
// Total number of active UDP connections (CConnection
// objects for TCP)
#define COUNTER_ActiveUDPConnections 6
// Total number of connections (CConnection objects) that are
// waiting for remote "connect()" call to finish.
#define COUNTER_ConnectingTCPConnections 8
// Total number of connections (CConnection objects) that are
// waiting for in-bound "connect()" call to finish.
// These are connections done from RWS to a client after
// RWS accepted a connection from the Internet on a listening socket.
#define COUNTER_BackConnectingTCPConnections 10
// Number of connection objects that wait for TCP connection
// from the client (after a successful remote connect)
#define COUNTER_AcceptingTCPConnections 12
// Number of connection objects that wait for TCP connections
// from the Internet (after a successful remote listen)
#define COUNTER_ListeningTCPConnections 14
// The number of Data-Pump worker threads that are alive.
#define COUNTER_WorkerThreads 16
// The number of Data-Pump worker threads that are available
// (waiting in completion port queue)
#define COUNTER_AvailableWorkerThreads 18
// Number of times "new" or "malloc" failed.
#define COUNTER_AllocFailureLogs 20
// Number of times "new" or "malloc" failed.
#define COUNTER_PumpTotalRead 22
// Number of times "new" or "malloc" failed.
#define COUNTER_PumpTotalWrite 24
#define COUNTER_PendingGetXByY 26
#define COUNTER_SuccessGetXByY 28
#define COUNTER_FailedGetXByY 30
// The number of control channel worker threads that are alive.
#define COUNTER_CtrlWorkerThreads 32
// The number of control channel worker threads that are available
// (waiting in completion port queue)
#define COUNTER_CtrlAvailableWorkerThreads 34
#define LastCounter 34